+Wed Jul 4 23:17:04 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
+ Make compile.
+
+ * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
+ with calling gtk_widget_set_style_internal() with
+ the old style, not the new style. (#56989)
+
Wed Jul 4 22:35:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
+Wed Jul 4 23:17:04 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
+ Make compile.
+
+ * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
+ with calling gtk_widget_set_style_internal() with
+ the old style, not the new style. (#56989)
+
Wed Jul 4 22:35:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
+Wed Jul 4 23:17:04 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
+ Make compile.
+
+ * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
+ with calling gtk_widget_set_style_internal() with
+ the old style, not the new style. (#56989)
+
Wed Jul 4 22:35:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
+Wed Jul 4 23:17:04 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
+ Make compile.
+
+ * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
+ with calling gtk_widget_set_style_internal() with
+ the old style, not the new style. (#56989)
+
Wed Jul 4 22:35:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
+Wed Jul 4 23:17:04 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
+ Make compile.
+
+ * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
+ with calling gtk_widget_set_style_internal() with
+ the old style, not the new style. (#56989)
+
Wed Jul 4 22:35:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
+Wed Jul 4 23:17:04 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
+ Make compile.
+
+ * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
+ with calling gtk_widget_set_style_internal() with
+ the old style, not the new style. (#56989)
+
Wed Jul 4 22:35:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
+Wed Jul 4 23:17:04 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkdnd.c (gtk_drag_dest_hierarchy_changed):
+ Make compile.
+
+ * gtk/gtkwidget.c (gtk_widget_reset_rc_style): Fix problem
+ with calling gtk_widget_set_style_internal() with
+ the old style, not the new style. (#56989)
+
Wed Jul 4 22:35:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtklabel.c gtk/gtkmenubar.c gtk/gtktreeviewcolumn.c
guint32 time);
static void gtk_drag_dest_realized (GtkWidget *widget);
static void gtk_drag_dest_hierarchy_changed (GtkWidget *widget,
- GtkWidget *old_toplevel);
+ GtkWidget *previous_toplevel);
static void gtk_drag_dest_site_destroy (gpointer data);
static void gtk_drag_dest_leave (GtkWidget *widget,
GdkDragContext *context,
}
static void
-gtk_drag_dest_hierarchy_changed (GtkWidget *widget)
+gtk_drag_dest_hierarchy_changed (GtkWidget *widget,
+ GtkWidget *previous_toplevel)
{
GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
g_object_notify (G_OBJECT (widget), "name");
}
-s
+
/**
* gtk_widget_get_name:
* @widget: a #GtkWidget
new_style = gtk_widget_get_default_style ();
if (initial_emission || new_style != widget->style)
- gtk_widget_set_style_internal (widget, widget->style, TRUE);
+ gtk_widget_set_style_internal (widget, new_style, TRUE);
}
/**